home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / TemaCD / RCEdit / RCEdit.CAB / Make Array.js < prev    next >
Text File  |  1996-09-30  |  160b  |  10 lines

  1. // Make array general function
  2.  
  3.     function MakeArray(size) {
  4.         this.lenght = size;
  5.         for(var i=1; i<=size; i++) {
  6.             this[i] = 0;
  7.         }
  8.         return this;
  9.     }
  10.